home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <math.h>
-
- #include "misc.h"
- #include "vector.h"
- #include "voronoi.h"
-
- #ifndef MAX
- #define MAX(a,b) ((a)>(b))?(a):(b)
- #endif
-
- #ifndef FALSE
- #define FALSE 0
- #endif
- #ifndef TRUE
- #define TRUE 1
- #endif
-
- /* prototypes not included in orig voronoi code */
- int load_vsites(int,float sites[][2],double,double,double,double);
- int find_vregion(int,float pverts[][2]);
- int find_dtriangles(TRI **);
-